:root {
  --biru-tua: #0f224f;
  --emas: #d9b866;
  --merah: #e50013;
  --black: #333333;
  --white: #ffffff;
  --gray-dark: #787878;
  --shadow-color: rgba(0, 0, 0, 0.1);
}

/* =================== BASE STYLES =================== */
body,
html {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    scroll-behavior: smooth;
}

/* =================== ANTI GRATIFIKASI =================== */
.section-banner-gratifikasi {
  background-color: var(--biru-tua);
  color: var(--white);
  text-align: center;
  font-weight: 700;
  font-size: clamp(0.75rem, 1vw, 0.875rem);
  padding: 0.5rem 0;
  text-transform: uppercase;
}

.section-banner-gratifikasi .highlight {
    color: var(--merah);
}

@media (max-width: 767.98px) {
  .section-banner-gratifikasi {
    font-size: clamp(0.4rem, 2.5vw, 0.85rem);
    padding: 0.4rem 0;
    line-height: 1.4;
  }
}

/* =================== POPUP =================== */

.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
}

.popup-overlay.show {
  opacity: 1;
  visibility: visible;
}

.popup-content {
  position: relative;
  background: var(--white);
  padding: 0;
  border-radius: 28px;
  max-width: 90%;
  max-height: 90%;
  overflow: hidden;
}

/*.popup-content img {*/
/*  display: block;*/
/*  width: 100%;*/
/*  height: auto;*/
/*}*/

.popup-content img {
  display: block;
  max-width: 100%;
  height: auto;
  max-height: 90vh; /* Batasi tinggi maksimum di layar */
  object-fit: contain; /* Pastikan gambar tetap proporsional */
}

.popup-close {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 20px;
  width: 36px;
  height: 36px;
  line-height: 36px;
  text-align: center;
  background: var(--merah);
  color: var(--white);
  border: none;
  border-radius: 50%;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
}

.popup-close:hover {
  background: var(--merah);
  transform: scale(1.1);
}



/* =================== NAVBAR =================== */
nav.navbar-custom {
    background-color: var(--white);
    padding: clamp(16px, 2vw, 20px) 0;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.navbar-brand img {
    height: clamp(50px, 6vw, 65px);
    width: auto;
}

.navbar-custom .nav-link {
    color: black;
    font-weight: 500;
    font-size: clamp(14px, 1.2vw, 18px);
    text-decoration: none;
    margin-right: clamp(24px, 5vw, 50px);
}

.navbar-custom .nav-link:hover {
    color: var(--merah);
}

.btn-contact-hubungi-kami-nav {
    border: 1px solid var(--merah);
    color: var(--merah);
    border-radius: clamp(6px, 1vw, 8px);
    padding: clamp(10px, 1vw, 12px) clamp(20px, 2.5vw, 28px);
    font-size: clamp(13px, 1vw, 15px);
    font-weight: 600;
    background-color: transparent;
    white-space: nowrap;
    min-width: clamp(140px, 18vw, 160px);
    text-align: center;
    display: inline-block;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-contact-hubungi-kami-nav:hover {
    background-color: var(--merah);
    color: var(--white);
}

.text-menu-label {
    font-size: 13px;
    font-weight: 500;
    color: var(--black);
}

@media (max-width: 991.98px) {
  nav.navbar-custom {
      padding: 12px 15px;
  }

  nav.navbar-custom .navbar-brand img {
      height: 35px;
  }

  .navbar-custom .container-fluid {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .text-menu-label {
    margin-left: 0px;
  }

  .navbar-brand {
    margin-right: 6px;
  }

  .menu-trigger {
    text-decoration: none;
  }

  .menu-trigger .navbar-toggler-icon {
    height: 24px;
    display: inline-block;
  }

  .menu-trigger .text-menu-label {
    font-size: 14px;
    margin-left: 6px;
  }
}


/* =================== HERO SECTION =================== */
.hero-image-section {
  width: 100%;
  overflow: hidden;
  
}

.hero-image-swiper {
  width: 100%;
  /*height: 600px;*/
  height: 100%;
}

.hero-image-wrapper {
  /*height: 600px;*/
  height: 100%;
}

.hero-image-swiper .swiper-slide {
  /*height: 600px;*/
  height: 100%;
}

.hero-image {
  width: 100%;
  /*height: 600px;*/
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Navigasi Panah */
.hero-image-next,
.hero-image-prev {
  color: #ffffff;
  background-color: rgba(0, 0, 0, 0.4);
  padding: 20px;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  top: 50%;
  transform: translateY(-50%);
  transition: background-color 0.3s ease;
}

.hero-image-next:hover,
.hero-image-prev:hover {
  background-color: rgba(0, 0, 0, 0.7);
}

.hero-image-next::after,
.hero-image-prev::after {
  font-size: 18px;
}

.hero-image-next {
  right: 10px;
}

.hero-image-prev {
  left: 10px;
}

/* Pagination */
.hero-image-pagination {
  bottom: 20px !important;
  text-align: center;
}

.hero-image-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #ccc;
  opacity: 1;
  border-radius: 50%;
  margin: 0 6px;
  transition: all 0.3s ease;
}

.hero-image-pagination .swiper-pagination-bullet-active {
  background-color: #0f224f;
  transform: scale(1.3);
}

/* Responsive */
@media (max-width: 768px) {
  .hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}


  .hero-image-next,
  .hero-image-prev {
    padding: 10px;
    width: 32px;
    height: 32px;
    font-size: 14px;
  }

  .hero-image-pagination {
    bottom: 8px !important;
  }

  .hero-image-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    margin: 0 4px;
  }
}


/* =================== CLIENT SECTION =================== */
.client-logos {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.client-logos h2 {
    font-size: 28px;
    margin: 1.5rem 0;
    text-align: center;
    color: #0f224f;
}

.client-logos-swiper .swiper-slide img {
  /* max-height: 80px; */
  height: 65%;
  object-fit: contain;
  /* filter: grayscale(100%); */
  /* opacity: 0.7; */
  transition: 0.3s ease;
}

.client-logos-swiper .swiper-slide img:hover {
  filter: none;
  opacity: 1;
}

@media (max-width: 768px) {
  .client-logos {
    padding: 40px 0;
  }

  .client-logos h2 {
    font-size: 20px; /* lebih kecil dari 28px */
    margin: 1rem 0;
  }

  .client-logos-swiper .swiper-slide img {
    height: 50%; /* lebih kecil dari 65% */
  }
}

/* =================== ABOUT SECTION =================== */
.about-section {
    background-color: #ffffff;
    color: #1a1a1a;
}

.about-section h2 {
    font-weight: bold;
    font-size: 40px;
    color: #0f224f;
}

.about-section h3 {
    font-weight: bold;
    font-size: 26px;
    color: #787878;
}

.about-section p {
    font-size: 22px;
    line-height: 1.7;
    color: #787878;

}

.highlight-blue {
    color: #002b5b;
    font-weight: 600;
}

.about-section .btn-contact {
    background-color: #002b5b;
    color: white;
    padding: 10px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    opacity: 1;
    transition: all 0.3s ease;
    text-decoration: none;
    cursor: pointer;
    display: inline-block;
    margin-top: 20px;
}

.about-section .btn-contact:hover {
    background-color: white;
    color: #002b5b;
    border: 2px solid #002b5b;
    box-shadow: none;
    text-decoration: none;
}

@media (max-width: 768px) {
  .about-section h2 {
      font-size: 24px;
  }

  .about-section h3 {
      font-weight: bold;
      font-size: 16px;
      color: #787878;
  }

  .about-section p {
      font-size: 15px;
      line-height: 1.7;
      color: #787878;
  }

  .about-section .btn-contact {
      background-color: #002b5b;
      color: white;
      padding: 10px 20px;
      border-radius: 50px;
      font-weight: 600;
      font-size: 12px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
      opacity: 1;
      transition: all 0.3s ease;
      text-decoration: none;
      cursor: pointer;
      display: inline-block;
      margin-top: 5px;
  }

  .about-section .btn-contact:hover {
      background-color: white;
      color: #002b5b;
      border: 2px solid #002b5b;
      box-shadow: none;
      text-decoration: none;
  }
}

/* =================== STATISTIC SECTION =================== */
.statistic-section .card-box {
    background-color: #002b5b;
    color: #fff;
    border-radius: 50px;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    aspect-ratio: 1 / 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.statistic-section .card-box h3 {
    font-size: 70px;
    margin-bottom: 10px;
    color: #f8f9fa;
}

.statistic-section .card-box p {
    font-size: 28px;
    margin: 0;
    color: #f8f9fa;
}

.statistic-section {
    background-color: #F8F9FA;
    color: #1a1a1a;
}
 @media (max-width: 768px) {
  .statistic-section .card-box {
      background-color: #002b5b;
      color: #fff;
      border-radius: 12px;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
      padding: 20px 15px;
  }

  .statistic-section .card-box h3 {
      font-size: 20px;
      margin-bottom: 10px;
      color: #f8f9fa;
  }

  .statistic-section .card-box p {
      font-size: 8px;
      margin: 0;
      color: #f8f9fa;
  }

  .statistic-section .card-box h3 {
      font-size: 24px;
  }
}

/* =================== LAYANAN SECTION =================== */
.layanan {
  padding: 60px 0;
  overflow: visible;
  min-height: auto;
}

.layanan-title {
  font-size: 50px;
  font-weight: 600;
  text-align: center;
  color: #0f224f;
  margin-bottom: 80px;
}

.layanan-card {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid #ddd;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  height: auto;
  max-height: none;
  flex-grow: 1;
  width: 100%;
}

.layanan-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.layanan-content {
  position: relative;
  background: rgba(255, 255, 255, 0.95);
  text-align: center;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  flex-grow: 1;
  padding: 20px 20px 30px;
  min-height: 180px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.layanan-icon {
  width: 60px;
  height: 60px;
  background-color: #0f224f;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: -60px auto 15px;
  font-size: 24px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.layanan-content h5 {
  font-size: 18px;
  font-weight: 600;
  color: #0f224f;
  margin-bottom: 10px;
}

.layanan-content p {
  font-size: 14px;
  color: #444;
  flex-grow: 1;
  max-height: 70px;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Swiper Container */
.layanan-swiper {
  padding-top: 10px;
  position: relative;
  overflow: hidden;
  width: 100%;
}

/* Swiper Wrapper & Slide */
.layanan-swiper .swiper-wrapper {
  display: flex;
  align-items: stretch;
  height: auto;
}

.layanan-swiper .swiper-slide {
  max-width: 360px;
  width: 100%;
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  height: auto;
}

/* Pagination */
.layanan-swiper-pagination {
  text-align: center;
  margin-bottom: 0px;
  position: relative;
  z-index: 10;
}

.layanan-swiper-pagination .swiper-pagination-bullet {
  background-color: #0f224f;
  opacity: 0.4;
  transition: 0.3s;
}

.layanan-swiper-pagination .swiper-pagination-bullet-active {
  opacity: 1;
}

/* Hover Effects */
.layanan-card:hover .layanan-img {
  transform: scale(1.05);
}

.layanan-card:hover .layanan-icon {
  background-color: #fff;
  color: #0f224f;
  border: 2px solid #0f224f;
}

 @media (max-width: 768px) {
  .layanan-section h2{
      font-size: 25px;
      font-weight: 600;
      text-align: center;
      color: #0f224f;
      margin-bottom: 50px;
  }
  .layanan-title {
    font-size: 28px;
    font-weight: 600;
    text-align: center;
    color: #0f224f;
    margin-bottom: 80px;
  }

  .layanan-swiper .swiper-slide {
    display: flex;
    justify-content: center; /* ini yang penting */
  }

  .layanan-card {
    max-width: 90%; /* supaya tidak terlalu mepet layar */
  }
}




/* =================== PROMO SECTION =================== */
.double-banner {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.banner {
  display: flex;
  width: 100%;
  height: 270px;
}

.banner-img.desktop-img {
  display: block;
  width: 50%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.banner-img.mobile-img {
  display: none;
}

.banner-text {
  width: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 30px;
}

.inner-text {
  max-width: 550px;
}

.banner-text h2 {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 15px;
}

.banner-text p {
  font-size: 15px;
  margin-bottom: 50px;
}

.navy {
  background-color: #1e3762;
  color: white;
}

.gold {
  background-color: #d1ab4c;
  color: white;
}

.btn-white {
  background: white;
  color: #1e3762;
  padding: 10px 20px;
  text-decoration: none;
  font-weight: bold;
  border: 2px solid #1e3762;
  border-radius: 4px;
}

.btn-white:hover {
  background: #1e3762;
  color: white;
  border-color: white;
}

.btn-gold {
  background: white;
  color: #d1ab4c;
  padding: 10px 20px;
  text-decoration: none;
  font-weight: bold;
  border: 2px solid #d1ab4c;
  border-radius: 4px;
}

.btn-gold:hover {
  background: #d1ab4c;
  color: white;
  border-color: white;
}

@media (max-width: 768px) {
  .banner-img.desktop-img { display: none; }
    .banner {
    flex-direction: row;
    height: auto;
  }

  .banner-text {
    width: 50%;
    padding: 20px;
  }

  .banner-img.desktop-img {
    display: none;
  }

  .banner-img.mobile-img {
    display: block;
    width: 50%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }
}



/* =================== FOOTER =================== */
.footer {
  background-color: #F8F9FA;
  font-family: 'Poppins', sans-serif;
  color: #000;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 40px 5%;
  gap: 30px;
}

.footer-col {
  flex: 1 1 200px;
  min-width: 180px;
}

.footer-col h4 {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 10px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin-bottom: 8px;
}

.footer-col ul li a {
  text-decoration: none;
  color: #000;
}

.footer-col ul li a:hover {
  text-decoration: underline;
}

.footer-logo {
  max-width: 250px;
  margin-bottom: 10px;
}

.tagline {
  font-size: 14px;
  color: #555;
}

.footer-bottom {
  background-color: #1e3762;
  color: white;
  text-align: center;
  padding: 10px 0;
  font-size: 14px;
}
.footer a {
  text-decoration: none;      
  color: inherit;              
  transition: color 0.3s;      
}

.footer a:hover {
  color: #1e3762;            
  text-decoration: underline;  
}


/* =================== MENU HUBUNGI KAMI =================== */

.contact-section {
    background-color: #16355D;
    color: white;
    padding: 60px 20px;
}

.contact-container {
    max-width: 800px;
    margin: auto;
}

.contact-title {
    text-align: center;
    margin-bottom: 10px;
    font-size: 2rem;
}

.contact-subtitle {
    text-align: center;
    margin-bottom: 40px;
    font-size: 1rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form-row {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
}

label {
    margin-bottom: 6px;
    font-weight: 500;
}

.form-row input {
    flex: 1;
}

input,
textarea {
    padding: 12px;
    border: 2px solid;
    border-color: #ffffff;
    border-radius: 4px;
    box-sizing: border-box;
    font-size: 1rem;
    background-color: #16355D;
    color: #ffffff;
}

input::placeholder,
textarea::placeholder {
    color: #ffffff;
    opacity: 1; 
}

textarea {
    resize: vertical;
}

button[type="submit"] {
    background-color: white;
    color: #16355D;
    padding: 12px;
    font-weight: bold;
    border-radius: 4px;
    border: 2px solid #1e3762;
    border-radius: 4px;
    cursor: pointer;
}

button[type="submit"]:hover {
    background: #1e3762;
    color: white;
    border-color: white;
   
}

/* KONTAK DI FORM */

.section-locations {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  background-color: #ffffff;
}

.location-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}

.location-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  max-width: 360px;
  flex: 1 1 300px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.location-title {
  text-align: center;
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: #16355D;
}

.info-box {
  display: flex;
  align-items: center; 
  gap: 1rem;
  margin-bottom: 1rem;
  padding: 0.75rem 1rem;
  border-radius: 12px;
  background-color: #fff;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.info-icon {
  width: 50px;
  height: 50px;
  min-width: 50px;
  min-height: 50px;
  border: 2px dashed #16355D;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #16355D;
}

.info-label {
  font-weight: 600;
  color: #16355D;
  margin-bottom: 4px;
  font-size: 0.95rem;
}

.info-text {
  color: #16355D;
  font-size: 11px;
  line-height: 1.5;
  word-break: break-word;
}

.info-box:hover {
  background-color: #f5f9fc;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.07);
}


.info-text a {
  color: #16355D;
  text-decoration: none;
}

.map-wrapper {
  margin-top: 1rem;
  border-radius: 10px;
  overflow: hidden;
}

.map-wrapper iframe {
  width: 100%;
  height: 200px;
  border: 0;
}


/* =================== MENU SUPPORT =================== */
.select-support {
    padding: 12px;
    border: 2px solid #ffffff;
    border-radius: 4px;
    box-sizing: border-box;
    font-size: 1rem;
    background-color: #16355D;
    color: #ffffff;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url('data:image/svg+xml;charset=US-ASCII,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 4 5"><path fill="%23ffffff" d="M2 0L0 2h4z"/></svg>');
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 0.65rem auto;
}


/* =================== MENU LOWONGAN KERJA =================== */
.job .search-filters {
    border: 1px solid #ccc;
    border-radius: 8px;
    padding: 12px;
    display: flex;
    gap: 10px;
    align-items: center;
    flex-wrap: wrap;
}

.job .search-filters .search-group,
.job .search-filters .location-group {
    flex: 1;
    min-width: 200px;
    display: flex;
    align-items: center;
    height: 48px;
}

.job .search-filters .select2-container {
    width: 100% !important;
    font-size: 0.9rem;
    flex: 1;
    min-width: 200px;
    height: 40px;
}

.select2-container--default .select2-selection--single {
    height: 100% !important;
    border: 1px solid #ced4da !important;
    border-radius: 6px !important;
    padding: 10px 12px !important;
    background-color: #fff !important;
    display: flex !important;
    align-items: center;
    box-shadow: none !important;
}

.select2-container--default .select2-selection--single:focus {
    outline: none !important;
    box-shadow: 0 0 0 0.25rem rgba(13,110,253,.25) !important; /* optional: efek focus */
}

.select2-selection__rendered {
    color: #495057 !important;
    line-height: 1.5 !important;
}

.select2-selection__arrow {
    height: 100% !important;
    top: 0 !important;
    right: 10px !important;
}

.select2-selection__clear {
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1rem;
    color:#1e3762;;
    cursor: pointer;
}
.select2-container .select2-search--dropdown .select2-search__field {
    background-color: #fff !important;   
    color: #212529;                      
    border: 1px solid #ced4da;           
    border-radius: 4px;
    padding: 6px 8px;
    font-size: 14px;
}

.job .search-filters .btn-coklat {
    height: 48px;
    white-space: nowrap;
    padding: 0 24px;
    background-color: #1e3762;
    color: white;
    border-radius: 6px;
    border: none;
}

.job .search-filters .btn-coklat:hover {
    background-color: white;
    border: 2px solid;
    border-color: #1e3762;
    color: #1e3762;
}

.search-group {
    width: 100%;
}

.search-group input {
    padding-right: 2.5rem;
}

.search-group .bi-x-circle-fill {
    cursor: pointer;
    font-size: 1.2rem;
}

.job-meta {
    display: flex;
    gap: 140px;
    flex-wrap: wrap;
    font-size: 0.9rem;
    color: #6c757d;
    margin-top: 0.5rem;
}

.job-meta .meta-item {
    min-width: 150px;
}

.job-meta .label {
    color: #adb5bd;
    font-size: 0.75rem;
    text-transform: uppercase;
}

.job-header .back-icon {
    font-size: 1.25rem;
    cursor: pointer;
    color: inherit;
    transition: color 0.2s ease;
    user-select: none;
}

.job-header .back-icon:hover {
    color: #1e3762;
}

.job .btn-link {
    text-decoration: none !important;
    color: inherit;
}

.job .btn-link:hover {
    color: #1e3762;
    text-decoration: underline;
}

.job-card {
    border: 2px solid transparent;
    transition: border 0.3s ease, box-shadow 0.3s ease;
}

.job-card:hover {
    border: 2px solid #1e3762; /* biru Bootstrap */
    box-shadow: 0 0 10px rgba(13, 110, 253, 0.2); /* efek glow */
}

.gold-text {
    color: #d1ab4c; /* warna emas */
}

.btn-lamar {
    background-color: #16355D; /* Biru tua */
    color: #ffffff;
    padding: 10px 16px;
    border: 2px solid transparent;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-lamar:hover {
    background-color: #ffffff;
    color: #16355D;
    border-color: #16355D;
}

@media (max-width: 768px) {
  .job-top-banner picture,
  .job-top-banner img {
    height: 100%;
    object-fit: cover;
  }

  .job-meta .meta-item {
    min-width: 100%;
  }

   .job-meta {
    gap: 16px; /* dari 140px menjadi 16px */
  }
}

/* =================== FORM LAMARAN KERJA =================== */

@keyframes spin {
    100% { transform: rotate(360deg); }
}
.spinner-custom {
    border: 6px solid #ccc;
    border-top: 6px solid #007bff;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 1s linear infinite;
}

.pengalaman-card .card-header button.pengalaman-header-btn {
        font-size: 0.75rem;
        padding: 2px 6px;
    }

.custom-tab.nav-tabs {
    border-bottom: 2px solid #16355D;
}

/* Tab item */
.custom-tab.nav-tabs .nav-link {
    color: #16355D;
    background-color: #ffffff;
    border: 1px solid #16355D;
    border-bottom: none;
    margin-right: 2px;
    font-weight: 500;
    transition: background-color 0.3s, color 0.3s;
}

/* Tab aktif */
.custom-tab.nav-tabs .nav-link.active {
    background-color: #16355D;
    color: #ffffff;
    border-color: #16355D;
}

/* Hover effect (opsional) */
.custom-tab.nav-tabs .nav-link:hover {
    background-color: #f0f4f8;
    color: #16355D;
}

#lamaranForm input,
#lamaranForm select,
#lamaranForm textarea {
    border: 1px solid #16355D;
    box-shadow: none;
    color: #16355D;
}

/* Fokus: Tambah efek glow ringan saat input aktif */
#lamaranForm input:focus,
#lamaranForm select:focus,
#lamaranForm textarea:focus {
    border-color: #16355D;
    box-shadow: 0 0 0 0.2rem rgba(22, 53, 93, 0.25);
    outline: none;
}

/* Untuk radio dan checkbox */
#lamaranForm input[type="radio"],
#lamaranForm input[type="checkbox"] {
    accent-color: #16355D;
}

/* Header Card Pengalaman */
#lamaranForm .pengalaman-card .card-header {
    background-color: #16355D; /* Biru tua */
    color: #fff; /* Teks putih */
}

/* Button Tambah Pengalaman */
#lamaranForm .btn-tambah-pengalaman {
    background-color: #16355D;
    color: #fff;
    border: none;
}

#lamaranForm .btn-tambah-pengalaman:hover {
    background-color: #122a4b;
}

/* Button Ciutkan / Tampilkan (warna emas) */
#lamaranForm .pengalaman-header-btn.btn-secondary {
    background-color: #d1ab4c;
    color: #fff;
    border: none;
}

#lamaranForm .pengalaman-header-btn.btn-secondary:hover {
    background-color: #b8933e;
}

/* Button Hapus (biar tetap merah seperti biasa, tapi bisa diubah juga kalau mau) */
#lamaranForm .pengalaman-header-btn.btn-danger {
    background-color: #dc3545;
    border: none;
    color: #fff;
}

#lamaranForm .pengalaman-header-btn.btn-danger:hover {
    background-color: #bb2d3b;
}

@media (max-width: 768px) {
    .nav-tabs.custom-tab .nav-link:not(.active) {
        display: none;
    }

    #tab1 input[name="nama"] {
        margin-bottom: 1rem;
    }

    #tab1 input[name="usia"] {
        margin-bottom: 1rem;
    }

    #tab1 select[name="gender"] {
        margin-bottom: 1rem;
    }

    #tab1 select[name="agama"] {
        margin-bottom: 1rem;
    }

    #tab1 input[name="tanggal_lahir"] {
        margin-bottom: 1rem;
    }
    
}


/* =================== MENU LAYANAN KAMI =================== */
 .layanan3 {
  padding: 60px 0;
  background-color: #f8f9fa;
}

.layanan3-title {
  font-size: 40px;
  text-align: center;
  color: #0f224f;
  font-weight: 700;
  margin-bottom: 50px;
}

.layanan3-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.layanan3-card {
  position: relative; /* wajib! */
  border-radius: 16px;
  overflow: hidden;
  background-color: #fff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.layanan3-card:hover {
  transform: translateY(-5px);
}
.layanan3-card:hover .layanan3-icon {
  background-color: #fff;
  color: #0f224f;
  border: 3px solid #0f224f;
}

.layanan3-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.layanan3-icon {
  position: absolute;
  top: 180px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  width: 70px;
  height: 70px;
  background-color: #0f224f;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  border: 3px solid #fff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.layanan3-content {
  margin-top: 50px; /* agar tidak ketabrak icon */
  padding: 20px 20px 30px;
  text-align: center;
  background-color: rgba(255, 255, 255, 0.95);
  position: relative;
  z-index: 1;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
}

.layanan3-content h5 {
  font-size: 18px;
  font-weight: 700;
  color: #0f224f;
  margin-bottom: 35px;
}

@media (max-width: 992px) {
  .layanan3-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .layanan3-grid {
    grid-template-columns: 1fr;
  }

  .layanan3-title {
    font-size: 28px;
  }
}








.btn-kategori-berita {
    background-color: #fff;
    color: #002B5B;
    border: 1px solid #002B5B;
    border-radius: 1.5rem;
    padding: 6px 16px;
    font-weight: 500;
    transition: all 0.2s ease;
}

.btn-kategori-berita:hover {
    background-color: #002B5B;
    color: #ffffff;
    border: 1px solid #002B5B;
}

.btn-kategori-berita.active {
    background-color: #002B5B;
    color: #fff;
    border: 1px solid #002B5B;
}

.berita-slider {
    background-color: #f8f9fa; 
    overflow-x: hidden;
}

.berita-slider h2 {
    font-size: 1.75rem;
    line-height: 1.4;
}

.berita-slider .btn-primary {
    background-color: #002B5B;
    border-color: #002B5B;
    color: #fff;
    border: 2px solid #002B5B;
}

.berita-slider .btn-primary:hover {
    background-color: #ffffff;
    color: #002B5B;
    border: 2px solid #002B5B;
}

.berita-slider .swiper-button-prev,
.berita-slider .swiper-button-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 43, 91, 0.35); /* semitransparan */
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    z-index: 10;
    transition: background-color 0.2s ease;
}

/* Hover supaya tombol tetap terasa interaktif */
.berita-slider .swiper-button-prev:hover,
.berita-slider .swiper-button-next:hover {
    background-color: rgba(0, 43, 91, 0.8);
}


.swiper-button-prev { left: -60px; }
.swiper-button-next { right: -60px; }

.swiper-button-prev::after,
.swiper-button-next::after {
    font-size: 18px;
}

.berita-slider .swiper-wrapper {
    margin-left: 0 !important;
}

.berita-slider .swiper-slide .row {
    margin-left: 0;
    margin-right: 0;
}

.berita-thumbnail {
    height: 230px;
    object-fit: cover;
}


/* ======================
   BERITA VIEW STYLING
   ====================== */

.konten-berita {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    line-height: 1.8;
    color: #333;
    margin-top: 1.5rem;
}

.konten-berita h1,
.konten-berita h2,
.konten-berita h3 {
    font-weight: bold;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.konten-berita h2 {
    font-size: 1.8rem;
    
}

.konten-berita h3 {
    font-size: 1.5rem;
    color: #374151;
}

.konten-berita p {
    margin-bottom: 1.25rem;
}

/* Gambar dalam konten */
.konten-berita img.gambar_berita {
    max-width: 100%;
    height: auto;
    margin: 2rem auto;
    display: block;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.share-icon {
    font-size: 1.2rem;
    color: #1e3a8a; /* biru tua */
    text-decoration: none;
    transition: color 0.2s ease-in-out;
    cursor: pointer;
}

.share-icon:hover {
    color: #0d47a1; /* biru lebih terang saat hover */
}

.berita-cta {
  background-color: #12326e;
  border-radius: 12px;
  overflow: hidden;
  margin: 2rem 0;
  display: flex;
  flex-wrap: wrap;
}

.berita-cta .cta-img img {
  width: 100%;
  max-width: 400px;
  height: auto;
  object-fit: cover;
  border-radius: 0;
}

.berita-cta .cta-content {
  flex: 1;
  padding: 2rem;
  min-width: 240px;
}

.berita-cta h4 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.berita-cta p {
  font-size: 1rem;
  margin-bottom: 1rem;
}

.berita-cta .btn {
  font-weight: 600;
  padding: 0.6rem 1.2rem;
  border-radius: 6px;
}
.button-view-edit,
.button-view-publish,
.button-view-back {
  font-size: 0.9rem;
  padding: 0.45rem 0.9rem;
  line-height: 1.4;
  height: 38px;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
}

/* Tombol Edit */
.button-view-edit {
    background-color: #f1c40f;
    color: #fff;
    border: 2px solid #f1c40f;
    
}
.button-view-edit:hover {
    background-color: #fff;
    color: #f1c40f;
    border: 2px solid #f1c40f;
}

/* Tombol Publish */
.button-view-publish {
  background-color: #12326e !important;
  color: #fff !important;
  border: 2px solid #12326e !important;
}
.button-view-publish:hover {
  background-color: #fff !important;
  color: #12326e !important;
  border: 2px solid #12326e !important;
}

/* Tombol Back */
.button-view-back {
    background-color: #888;
    color: #fff;
    border: 2px solid #888;
    
}
.button-view-back:hover {
    background-color: #fff;
    color: #888;
    border: 2px solid #888;
}

.coming-soon-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 40px;      /* Default (desktop) */
    padding-bottom: 60px;
    background-color: #f9f9f9;
}

.coming-soon-wrapper {
    text-align: center;
    max-width: 90%;
}

@media (max-width: 768px) {
    .coming-soon-section {
      align-items: flex-start;
      padding-top: 250px;
    }
}


/* ===================================================== */
/* ================ RESPONSIVE STYLES ================== */
/* ===================================================== */

/* ===== Tablet & Below (<= 991.98px) ===== */
@media (max-width: 991.98px) {


}

/* ===== Mobile (<= 767.98px) ===== */
@media (max-width: 767.98px) {
   

   

   
    @media (max-width: 768px) {
         .banner {
            height: 350px; /* Tambah tinggi di HP kecil */
        }

        .banner-text {
            padding: 15px;
        }

        .inner-text h2 {
            font-size: 18px;
        }

        .inner-text p {
            font-size: 13px;
            margin-bottom: 25px;
        }

        .btn-white,
        .btn-gold {
            padding: 7px 14px;
            font-size: 13px;
        }

        .footer-container {
            flex-direction: column;
            padding: 30px 20px;
        }

        .logo-col {
            display: flex;
            justify-content: center;
            align-items: center;
            flex-direction: column; /* kalau ingin logo + tagline stack ke bawah */
            text-align: center;
        }

        .footer-logo {
            max-width: 300px;
        }

        .footer-bottom {
            font-size: 13px;
        }

        .form-row {
        flex-direction: column;
    
    }

    .contact-section h2 {
        font-size: 1.5rem;
    }

    .contact-section p {
        font-size: 0.95rem;
    }
    
    .location-grid {
      flex-direction: column;
      align-items: center;
    }


    }
}
